From 1f9df5417a2b1c67d2198d8564bafc74f683d743 Mon Sep 17 00:00:00 2001 From: "kfraser@dhcp93.uk.xensource.com" Date: Wed, 31 May 2006 13:26:10 +0100 Subject: [PATCH] Fix ACM hypercall macros (broke the x86/64 and ia64 builds). Signed-off-by: Keir Fraser --- linux-2.6-xen-sparse/include/asm-ia64/hypercall.h | 2 +- .../include/asm-x86_64/mach-xen/asm/hypercall.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h b/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h index 938d0aa99c..f4794d6684 100644 --- a/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h +++ b/linux-2.6-xen-sparse/include/asm-ia64/hypercall.h @@ -250,7 +250,7 @@ static inline int HYPERVISOR_acm_op( unsigned int cmd, void *arg) { - return = _hypercall2(int, acm_op, cmd, arg); + return _hypercall2(int, acm_op, cmd, arg); } static inline int diff --git a/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h b/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h index fd45934418..12d18d39df 100644 --- a/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h +++ b/linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/hypercall.h @@ -261,7 +261,7 @@ static inline int HYPERVISOR_acm_op( int cmd, void *arg) { - return = _hypercall2(int, acm_op, cmd, arg); + return _hypercall2(int, acm_op, cmd, arg); } static inline int -- 2.30.2